home *** CD-ROM | disk | FTP | other *** search
- on FindHotText
- repeat with vI = 1 to 300
- if vI < 10 then
- set vAth to "00" & vI
- else
- if vI < 100 then
- set vAth to "0" & vI
- else
- set vAth to vI
- end if
- end if
- set vPre to "BIO" & vAth
- repeat with vPage = 1 to 10
- FindHotTextInCast(vPre & vPage)
- end repeat
- set vPre to "SIDE" & vAth
- repeat with vside = 1 to 3
- repeat with vPage = 1 to 5
- repeat with vSize = 1 to 3
- FindHotTextInCast(vPre & vside & vPage & vSize)
- end repeat
- end repeat
- end repeat
- end repeat
- end
-
- on FindHotTextInCast aCastName
- set aCast to the number of cast aCastName
- if aCast < 1 then
- exit
- end if
- set vWords to the number of words in field aCast
- set vCurrWord to 1
- set vHotText to EMPTY
- repeat while vCurrWord < vWords
- if the foreColor of word vCurrWord of field aCast = 113 then
- repeat while the foreColor of word vCurrWord of field aCast = 113
- set vHotText to vHotText & word vCurrWord of field aCast
- set vCurrWord to vCurrWord + 1
- if vHotText contains "," then
- exit repeat
- end if
- end repeat
- set vHotText to StripChars(vHotText, ",.'()-" & QUOTE)
- put vHotText
- set vHotText to EMPTY
- next repeat
- end if
- set vCurrWord to vCurrWord + 1
- end repeat
- end
-